One Liner For loop in C

For Loop In C

Created: 2022-08-19
Tags: #fleeting


SORT OF a one liner

for (nc = 0; getchar() != EOF; nc++)
    ;

A for loop must have a body
But since ; is there or the null statement, it satisfies the requirement

References